home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.20020314-20021006 / 000018_jaltman@watsun.cc.columbia.edu_Thu Apr 4 12:41:34 EST 2002.msg < prev    next >
Text File  |  2020-01-01  |  2KB  |  49 lines

  1. Article: 13287 of comp.protocols.kermit.misc
  2. Path: newsmaster.cc.columbia.edu!watsun.cc.columbia.edu!jaltman
  3. From: jaltman@watsun.cc.columbia.edu (Jeffrey Altman)
  4. Newsgroups: comp.protocols.kermit.misc
  5. Subject: Re: Can IKSD be run under a non-root userid?
  6. Date: 4 Apr 2002 16:15:06 GMT
  7. Organization: Columbia University
  8. Lines: 32
  9. Message-ID: <a8hu6a$m3l$1@newsmaster.cc.columbia.edu>
  10. References: <Pine.WNT.4.43.0204031247310.169-100000@refmntpc050.afsc.noaa.gov> <a8fu3g$fig$1@newsmaster.cc.columbia.edu> <a8fv7q$mo4$1@watsol.cc.columbia.edu> <a8h0k641rqc@enews3.newsguy.com>
  11. NNTP-Posting-Host: watsun.cc.columbia.edu
  12. X-Trace: newsmaster.cc.columbia.edu 1017936906 22645 128.59.39.2 (4 Apr 2002 16:15:06 GMT)
  13. X-Complaints-To: postmaster@columbia.edu
  14. NNTP-Posting-Date: 4 Apr 2002 16:15:06 GMT
  15. Xref: newsmaster.cc.columbia.edu comp.protocols.kermit.misc:13287
  16.  
  17. In article <a8h0k641rqc@enews3.newsguy.com>,
  18. those who know me have no need of my name  <not-a-real-address@usa.net> wrote:
  19. : <a8fv7q$mo4$1@watsol.cc.columbia.edu> divulged:
  20. : >In the former case, there is probably a better approach to the problem
  21. : >than IKSD.
  22. : it would be handy to be able to start an iksd under a non-root uid, with an
  23. : alternate passwd (and perhaps shadow) file, and there are several
  24. : possibilities for handling switching uid's, including no switching at all.
  25. : pam would complicate things.  for kerberos5 user-to-user would be implied.
  26.  
  27. This is not the problem that IKSD attempts to solve.  Users have for
  28. years before IKSD was released used C-Kermit for user to user transfers.
  29. If you do not need to switch userid then you can create your own Kermit
  30. server using
  31.  
  32.   SET SERVER LOGIN <username> <password>
  33.   SET HOST /SERVER * <port>  /TELNET
  34.   
  35. If you wish to use Kerberos 5 user to user mode, use
  36.  
  37.   SET HOST * <port> /K5USER2USER
  38.   IF NOT EQ \v(authname) "name of expected user" CLOSE CONNECTION
  39.   SERVER 
  40.  
  41.  
  42.  Jeffrey Altman * Sr.Software Designer      C-Kermit 8.0 available now!!!
  43.  The Kermit Project @ Columbia University   includes Telnet, FTP and HTTP
  44.  http://www.kermit-project.org/             secured with Kerberos, SRP, and 
  45.  kermit-support@columbia.edu                OpenSSL. Interfaces with OpenSSH
  46.